Version

CreateLinearGradientFill(Double,CellFillGradientStop[]) Method

Creates a linear gradient that can be applied to a cell's fill.
Syntax
'Declaration
 
Public Overloads Shared Function CreateLinearGradientFill( _
   ByVal angle As Double, _
   ByVal ParamArray stops() As CellFillGradientStop _
) As CellFillLinearGradient
public static CellFillLinearGradient CreateLinearGradientFill( 
   double angle,
   params CellFillGradientStop[] stops
)

Parameters

angle
The angle, in degrees, of the direction of the linear gradient, going clockwise from the left-to-right direction.
stops
Two or more gradient stops which describe the color transitions and their positions within the gradient.
Exceptions
ExceptionDescription
System.ArgumentExceptionstops contains less than two gradient stops. There must be at least two stops to define the gradient.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also